home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / MIDI / camd-37.1 / development / examples / camdlistreq / smakefile < prev    next >
Encoding:
Makefile  |  1994-02-15  |  647 b   |  26 lines

  1. # =========================================================================
  2. # Makefile for FilePilot using SAS C 6.3
  3. # =========================================================================
  4.  
  5. # debugging flags for compiler and linker
  6.  
  7. OPTFLAGS  = opt optsize
  8.  
  9. #CDEBUG  = define NDEBUG=1 debug=fullflush
  10. #LDEBUG  =
  11. CDEBUG = nodebug  $(OPTFLAGS)
  12. LDEBUG = stripdebug
  13.  
  14. CFLAGS      = nolink ansi unsignedchars ignore=51 ignore=147 $(CDEBUG)
  15.  
  16. LISTLIB   = //lib/camdlist.lib
  17.  
  18. OBJS      = $(MAINOBJS)
  19.  
  20. main: $(OBJS) makefile main.o $(LISTLIB)
  21.         SLINK lib:c.o main.o noicons library lib:sc.lib lib:amiga.lib $(LISTLIB) to main
  22.  
  23.  
  24. .c.o:
  25.     SC $*.c $(CFLAGS)
  26.